body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #F4F5FF;
}

main {
    flex: 1;
}

p {
    width: 100%;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: black;
    margin-top: 16px;
    margin-left: 8px;
}

a:hover {
    cursor: pointer;
    text-decoration: underline;
}

h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 8px;
}

h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 8px;
}

/* -------- Page Components -------- */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.about-us-paragraph {
    max-width: 550px;
}

.meet-the-team {
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    font-size: 36px;
    width: 100%;
    margin: auto;
    margin-bottom: 200px;
    margin-top: 150px;
    font-weight: 700;
}

.dividing-line {
    align-self: center;
    margin: auto;
    width: 75%;
    height: 2px;
    background-color: black;
}

.bio-paragraph {
    max-width: 80%;
}

.standard-image-logo {
    width: 300px;
    height: 300px;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 5%;
}

.page-title {
    font-size: 24px;
    color: black;
}

.content {
    align-self: center;
    margin: auto;
    margin-top: 100px;
    width: 85%;
    display: flex;
    gap: 20px;
}

.sub-content {
    align-self: center;
    margin: auto;
    margin-top: 50px;
    width: 75%;
    display: flex;
    gap: 20px;
}

.ic-launch {
    margin-left: 10.5px;
    width: 21px;
    height: 20px;
}

.link-container {
    margin-top: 32px;
    margin-bottom: 32px;
}

.link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #673DE6;
    margin-top: 8px;
    text-decoration: none;
}

.main-image {
    width: 100%;
    max-width: 650px;
    max-height: 406px;
    height: auto;
}

/* -------- Header Components -------- */
.header-bar {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    background-color: black;
}

.header-space {
    margin-left: 50px;
    margin-right: 50px;
}

.header-button {
    background-color: black;
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    border: none;
    width: 150px;
    transition: background-color 0.75s, color 0.75s, filter 0.5s;
}

.header-button:hover {
    background-color: white;
    color: black;
    filter: drop-shadow(0px 5px 20px rgba(255, 255, 255, 0.85));
}

/* -------- Footer Components -------- */
.footer-bar {
    width: 100%;
    height: 100px;
    display: flex;
    background-color: black;
}

.footer-copyright {
    color: white;
    margin: auto;
}

@media screen and (max-width: 580px) {
    h1, p, .link-container {
        width: 80%;
    }
}

@media screen and (min-width: 650px) and (max-height: 750px) {
    .link-container {
        margin-top: 12px;
    }
    
    h1 {
        margin-top: 0;
        margin-bottom: 0;
    }
}
